home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 May / SGI IRIX 6.5 Applications 2004 May.iso / dist / java3d.idb / usr / demos / java / j3d / programs / examples / VirtualInputDevice / Makefile.z / Makefile
Encoding:
Makefile  |  2003-08-08  |  362 b   |  21 lines

  1. .SUFFIXES: .java .class
  2. .java.class:
  3.     javac $<
  4.  
  5. default-target: all
  6.  
  7. clean clean-nuke:
  8.     rm -f *.class
  9.  
  10. SRCS = VirtualInputDevice.java \
  11.        RotationControls.java \
  12.        PositionControls.java \
  13.        WheelControls.java \
  14.        ButtonPositionControls.java \
  15.        SensorBehavior.java \
  16.        HelloUniverse.java    
  17.  
  18. OBJS = $(SRCS:.java=.class)
  19.  
  20. all: $(OBJS)
  21.